BigPictureStyle

Helper class for generating large-format notifications that include a large image attachment. If the platform does not provide large-format notifications, this method has no effect. The user will always see the normal notification view. This class is a "rebuilder": It attaches to a Builder object and modifies its behavior, like so:

Notification notification = new NotificationCompat.Builder(mContext)
    .setContentTitle("New photo from " + sender.toString())
    .setContentText(subject)
    .setSmallIcon(R.drawable.new_post)
    .setLargeIcon(aBitmap)
    .setStyle(new Notification.BigPictureStyle()
        .bigPicture(aBigBitmap))
    .build();

See also

Constructors

Link copied to clipboard
constructor()
constructor(@Nullable builder: NotificationCompat.Builder)

Functions

Link copied to clipboard
Link copied to clipboard
Override the large icon when the big notification is shown.
Link copied to clipboard
Provide the bitmap to be used as the payload for the BigPicture notification.
Provide an icon to be used as the payload for the BigPicture notification.
Link copied to clipboard
Link copied to clipboard
Overrides ContentTitle in the big form of the template.
Link copied to clipboard
Set the content description of the big picture.
Link copied to clipboard
Set the first line of text after the detail section in the big form of the template.
Link copied to clipboard
When set, the big picture of this style will be promoted and shown in place of the large icon in the collapsed state of this notification.